Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Task bind native impl #34

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

ashishdutta007
Copy link

No description provided.

while (someObj.hasOwnProperty(propKey)) {
propKey = Math.random().toString();
}
someObj[propKey] = targetFunc;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you use this line of code?
someObj.__proto__.propKey = targetFunc;

someObj[propKey] = targetFunc;

// prepend outer args to inner args
const result = someObj[propKey](...outerFuncArguments, ...innerFuncArgs);
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you use this line of code?
const result = someObj.propKey(...outerFuncArguments, ...innerFuncArgs);


// prepend outer args to inner args
const result = someObj[propKey](...outerFuncArguments, ...innerFuncArgs);
delete someObj[propKey];
Copy link
Member

@TheSTL TheSTL Oct 12, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

delete someObj.__proto__.propKey;

Copy link
Member

@TheSTL TheSTL left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changes are required because keyProps gets printed.
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants